-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.21 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
{
"name": "long-arithmetic",
"version": "1.0.0",
"description": "A JavaScript powered website to generate random long arithmetic problems.",
"devDependencies": {
"jasmine": "^2.3.1",
"jasmine-core": "^2.3.4",
"knockout": "^3.3.0",
"rimraf": "latest",
"tslint": "^3.5.0",
"typescript": "^1.8.2"
},
"scripts": {
"build:ts": "tsc -p src/script/",
"build:js": "cp node_modules/knockout/build/output/knockout-latest.js dist/knockout.js",
"build:html": "cp src/html/* dist/",
"build:style": "cp src/style/* dist/",
"build:test": "tsc -p test/script/",
"build:all": "npm run build:ts && npm run build:js && npm run build:html && npm run build:style && npm run build:test",
"build": "npm run build:all && npm run lint && npm run test:js",
"test:js": "node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=test/script/jasmine.json",
"test": "npm run build:test && npm run test:js",
"lint:ts": "tslint **/*[!.]?.ts",
"lint": "npm run lint:ts",
"clean:dist": "rimraf dist",
"clean:test": "rimraf test/script/*.js && rimraf test/script/*.js.map",
"clean": "npm run clean:dist && npm run clean:test"
},
"dependencies": {
"big-integer": "^1.6.15"
}
}