-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 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
38
39
40
41
{
"name": "@zenwolf/kanso",
"version": "0.0.2",
"private": false,
"description": "Light-weight, unidirectional, state-management library.",
"main": "lib",
"dependencies": {
"immutable": "~3.7.4"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.5.5",
"babel-plugin-dev": "0.0.1",
"eslint": "^0.24.0",
"istanbul": "^0.3.17",
"mocha": "^2.2.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zenwolf/kanso.git"
},
"author": "Matthew Jaquish <[email protected]>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/Zenwolf/kanso/issues"
},
"homepage": "https://github.com/Zenwolf/kanso#readme",
"scripts": {
"build": "npm run clean && npm run mkdirs && npm run build-js",
"build-js": "babel src --out-dir lib",
"clean": "rm -rf lib coverage",
"coverage": "istanbul cover _mocha -- --compilers js:babel/register -R tap --recursive test/spec",
"lint": "eslint ./src ./test",
"mkdirs": "mkdir -p lib",
"test": "npm run test-debug && npm run test-prod",
"test-base": "mocha --compilers js:babel/register -R tap --recursive test/spec",
"test-debug": "NODE_ENV=development npm run test-base",
"test-prod": "NODE_ENV=production npm run test-base",
"verify": "npm run lint && npm run test"
}
}