-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "subatomic.js",
"version": "1.0.0",
"description": "A better particle effect library",
"main": "webpack.config.js",
"scripts": {
"build": "webpack --progress",
"dev:server": "webpack-dev-server",
"lint": "tslint src/**/*.ts typings/**/*.ts",
"test": "mocha --compilers ts:ts-node/register --require test/setup.ts test/**/*.test.ts",
"test:watch": "npm test -- --watch"
},
"keywords": [
"particles"
],
"author": "Nicholas Tsim <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.46",
"@types/sinon": "^1.16.31",
"chai": "^3.5.0",
"jsdom": "^9.8.3",
"mocha": "^3.1.2",
"object.assign": "^4.0.4",
"raf": "^3.3.0",
"sinon": "^1.17.6",
"ts-loader": "^0.9.1",
"ts-node": "^1.6.1",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "^2.0.3",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^2.1.0-beta.9"
}
}